actions.ts 150 B

12345678
  1. "use server";
  2. import { revalidatePath } from "next/cache";
  3. const actions = async () => {
  4. revalidatePath("/profile");
  5. };
  6. export default actions;